.warning-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #151619;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

/* Purple blurred shape (top right) */
.warning-container::before {
  content: '';
  position: absolute;
  top: 8%;
  right: 10%;
  width: 170px;
  height: 110px;
  background: #a32aff;
  opacity: 0.45;
  filter: blur(40px);
  border-radius: 50% 60% 70% 40%;
  z-index: 0;
}

/* Green blurred shape (center right) */
.warning-container::after {
  content: '';
  position: absolute;
  top: 34%;
  right: 16%;
  width: 130px;
  height: 80px;
  background: #abff75;
  opacity: 0.19;
  filter: blur(36px);
  border-radius: 60% 70% 50% 90%;
  z-index: 0;
}

/* Additional blurred shapes */
.blue-blur {
  position: absolute;
  bottom: 10%;
  right: 7%;
  width: 150px;
  height: 100px;
  background: #41bcff;
  opacity: 0.22;
  filter: blur(42px);
  border-radius: 70% 60% 80% 50%;
  z-index: 0;
}

.magenta-blur {
  position: absolute;
  top: 38%;
  left: 7%;
  width: 135px;
  height: 100px;
  background: #8b2aff;
  opacity: 0.18;
  filter: blur(36px);
  border-radius: 60% 80% 45% 80%;
  z-index: 0;
}

.purple-fade {
  position: absolute;
  bottom: 6%;
  left: 10%;
  width: 90px;
  height: 85px;
  background: #7615d1;
  opacity: 0.10;
  filter: blur(35px);
  border-radius: 50% 90% 60% 80%;
  z-index: 0;
}

.warning-content {
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.warning-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.warning-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.4;
}

.store-buttons {
  /* background-color: #41bcff; */
  display: flex;
  /* gap: 1.5rem; */
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  /* padding: 0 12px; */
  /* padding: 0 2rem; */
  /* max-width: 600px; */
  /* margin: 0 auto; */
}

.store-button {
  transition: transform 0.2s ease;
  display: block;
  flex: 1;
  display: flex;
  /* scale: 1; */
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.store-button:hover {
  transform: scale(1.05);
}

.store-button img {
  height: auto;
  /* width: 100%; */
}


.loading-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}
