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

body {
  background-color: #0e1417;
}

.wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.downtime-text {
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  padding: 8px;
  color: #ff0000;
  line-height: 36px;
}
@media (max-width: 768px) {
  .downtime-text {
    font-size: 18px;
    line-height: 24px;
  }
}

/* download */

/* Wrapper button */
.download-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 280px;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 14px;
  cursor: pointer;
  margin: 20px 0; /* mb-2 */
  overflow: hidden;
  height: 48px;
  background: linear-gradient(180deg, #fdc830 0, #f37335 100%);
}

/* Inner text + icon wrapper */
.download-text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  pointer-events: none;
}

/* Icon */
.download-icon {
  display: block;
  max-width: 24px;
  height: 24px;
}

/* Label text */
.download-label {
  font-weight: 700;
  color: #1b2541;
}

/* Spinner */
.spinner {
  height: 20px;
  width: 20px;
  animation: spin 1s linear infinite;
  color: #000;
}

.spinner-bg {
  opacity: 0.25;
}

.spinner-fg {
  opacity: 0.75;
}

/* Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
