:root {
  --primary-color: #6001d2;
  --text-color: #333333;
  --bg-color: #e6e1f0;
  --container-bg: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.3);
}

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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #6001d2;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 24px;
  color: var(--text-color);
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.container {
  background: var(--container-bg);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px var(--shadow-color);
  max-width: 90%;
  width: 450px;
  transition: transform 0.3s ease;
}

.container:hover {
  transform: translateY(-5px);
}

.message {
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.checkmark {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 30px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 46px;
  animation: pulse 2s infinite;
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  color: white;
}

h1 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(98, 59, 151, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(98, 59, 151, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(98, 59, 151, 0);
  }
}

@media (max-width: 600px) {
  .container {
    padding: 30px;
    width: 95%;
  }

  .message {
    font-size: 16px;
  }

  .checkmark {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }
}
