* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  background: radial-gradient(circle at center, #021414, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.container {
  text-align: center;
}

.logo-box {
  width: 80px;
  height: 80px;
  margin: auto;
  border: 2px solid #00f5d4;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px #00f5d4;
}

.hex {
  width: 30px;
  height: 30px;
  border: 3px solid #00f5d4;
  border-radius: 6px;
}

.title {
  font-size: 48px;
  margin-top: 20px;
}

.title span {
  color: #00f5d4;
}

.subtitle {
  margin-top: 10px;
  color: #aaa;
  letter-spacing: 2px;
}

.enter-btn {
  margin-top: 30px;
  padding: 15px 40px;
  background: #00f5d4;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 0 20px #00f5d4;
  transition: 0.3s;
}

.enter-btn:hover {
  background: #00c9a7;
}

.redirect-text {
  margin-top: 20px;
  color: #aaa;
}

.progress-bar {
  width: 250px;
  height: 5px;
  background: #222;
  margin: 10px auto;
  border-radius: 5px;
  overflow: hidden;
}

#progress {
  width: 0%;
  height: 100%;
  background: #00f5d4;
  transition: width 1s linear;
}