/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: "Poppins", sans-serif;
  background-color: #0b0b0b;
  color: #f5f5f5;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Smoke overlay effect */
.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03), transparent 70%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02), transparent 70%);
  animation: smokeMove 10s ease-in-out infinite alternate;
}

@keyframes smokeMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-20px, 10px); }
}

/* Container */
.container {
  text-align: center;
  z-index: 2;
  padding: 20px;
}

/* Logo styling */
.logo {
  font-size: 3rem;
  font-weight: 700;
  color: #d3d3d3;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 85, 0, 0.4);
}

.logo span {
  color: #ff4500;
  text-shadow: 0 0 15px rgba(255, 85, 0, 0.7);
}

/* Subtitle */
h2 {
  font-size: 1.3rem;
  margin: 10px 0 15px;
  color: #ccc;
}

/* Description */
p {
  color: #999;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Ember flicker effect */
.embers {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff6600, rgba(255, 100, 0, 0.1));
  box-shadow: 0 0 20px rgba(255, 100, 0, 0.4);
  margin: 0 auto;
  animation: emberGlow 1.8s ease-in-out infinite alternate;
}

@keyframes emberGlow {
  from {
    opacity: 0.4;
    transform: scale(0.9);
    box-shadow: 0 0 10px rgba(255, 100, 0, 0.3);
  }
  to {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 100, 0, 0.7);
  }
}

/* Footer */
footer {
  font-size: 0.9rem;
  color: #777;
  margin-top: 50px;
}

footer a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffaa00;
}
