body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000000;
  font-family: Arial, sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.splash-container {
  text-align: center;
}

.logo {
  width: 180px;
  height: 180px;
  margin-bottom: 10px;
}

.logo-box h2 {
  margin: 10px 0 5px;
  font-size: 22px;
  letter-spacing: 1px;
}

.logo-box p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

.loading-section {
  margin-top: 30px;
}

.progress-bar {
  width: 280px;
  height: 6px;
  background: #444;
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.progress {
  width: 60%;
  height: 100%;
  background: #2196F3;
  animation: loadBar 3s linear forwards;
}

.loading-text {
  margin-top: 8px;
  font-size: 16px;
}

@keyframes loadBar {
  from { width: 0%; }
  to { width: 100%; }
}
