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

body {
  background-color: #0a0a0a;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.container {
  position: relative;
}

.logo-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 30px auto;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  position: relative;
}

.glow-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #ffd700;
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.content h1 {
  font-size: 96px;
  color: #ffd700;
  font-weight: 900;
}

.content h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
}

.content p {
  margin-bottom: 20px;
  color: #ccc;
}

.btn {
  padding: 10px 25px;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e6c200;
}
