:root {
  --bg-color: radial-gradient(circle at 30% 30%, #fff, #00E27B);
  --text-color: #000000;
  --accent-color: #00E27B;
}

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

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: "Segoe UI", Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

.logo {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 220px;
}

.coming-soon {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
