* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.container {
  text-align: center;
  padding: 30px;
  max-width: 420px;
}

.icon {
  font-size: 70px;
  margin-bottom: 20px;
  color: #00e5ff;
}

h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 25px;
}

.progress-box {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.progress-bar {
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, #00e5ff, #00ffa6);
  animation: load 2s ease-in-out infinite alternate;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #00e5ff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  background: #00ffa6;
}

.fo-loader {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 40px 0 10px;
}

.fo-loader span {
  width: 10px;
  height: 10px;
  background: #00e5ff;
  border-radius: 50%;
  animation: pulse 1.4s infinite ease-in-out;
}

.fo-loader span:nth-child(2) {
  animation-delay: 0.2s;
}
.fo-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.4); }
  100% { opacity: 0.3; transform: scale(0.8); }
}

.text {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}
