body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  height: 100vh;
  overflow: hidden;
  color: #004AAD;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  position: relative;
  text-align: center;
  background: #f0f4ff;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.glow {
  font-size: 3rem;
  color: #004AAD;
  text-shadow: 0 0 10px #a6c9ff, 0 0 20px #cce0ff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { text-shadow: 0 0 10px #a6c9ff, 0 0 20px #cce0ff; }
  50% { text-shadow: 0 0 20px #80bfff, 0 0 30px #cce0ff; }
}

.tagline {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

.store-buttons img {
  height: 55px;
  margin: 2rem 1rem 0 1rem;
  transition: transform 0.3s ease;
}
.store-buttons img:hover {
  transform: scale(1.1);
}
