.showcase {
  display: flex;
  justify-content: center;
  gap: 1rem;
  background:
    radial-gradient(800px 280px at 0% 0%, rgb(255 186 0 / 14%), transparent 56%),
    linear-gradient(180deg, #141517 0%, #1a1a1a 100%);
  color: var(--secondary-white);
  box-shadow: var(--shadow-lg);
}

.showcase-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  max-width: 800px;
  align-items: center;
}

.showcase h1 {
  width: 100%;
  color: var(--secondary-white);
  font-size: 2rem;
  margin-bottom: 0.1rem;
  text-align: center;
}

.showcase h2 {
  width: 100%;
  color: var(--secondary-white);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.1rem;
  text-align: center;
}

.showcase #qr {
  flex: 1 1 250px;
  min-width: 250px;
  height: 250px;
  background: rgb(255 255 255 / 7%);
  border: 2px dashed var(--primary-yellow);
  border-radius: var(--radius-lg);
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.showcase ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 2 1 300px;
}

.showcase ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgb(255 255 255 / 4%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  transition: all var(--duration-normal);
}

.showcase ul li::before {
  content: attr(data-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary-yellow);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.showcase ul li.done {
  text-decoration: line-through;
  opacity: 0.5;
  border-color: var(--border-medium);
}

.showcase #pay {
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(180deg, #ffcf47 0%, var(--primary-yellow) 100%);
  color: var(--bg-dark);
  box-shadow: 0 10px 18px rgb(255 186 0 / 28%);
}

.showcase #pay:hover {
  background: var(--primary-yellow-hover);
  transform: translateY(-1px);
}

.showcase #status {
  margin-top: 1rem;
  color: var(--secondary-light);
  font-style: italic;
  text-align: center;
}

.showcase #link {
  display: block;
  margin-top: 0.5rem;
  color: var(--primary-yellow);
  text-decoration: underline;
}

.showcase ul li.hidden {
  display: none;
}

@media (max-width: 700px) {
  .showcase-inner {
    flex-direction: column;
    padding: 1rem;
  }

  .showcase {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .showcase ul {
    width: 100%;
  }

  .showcase ul li {
    justify-content: flex-start;
  }

  .showcase ul li::before {
    width: 35px;
    height: 35px;
    font-size: 0.7rem;
  }
}
