.loader-body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url('../images/loader_bg.jpg') no-repeat center center;
  background-size: cover;
  font-family: 'Segoe UI', sans-serif;
}

.overlay {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.overlay h1 {
  font-size: 2.5em;
  color: white;
  text-shadow: 1px 1px 4px #000;
  margin-bottom: 20px;
}

.progress-container {
  width: 80%;
  height: 20px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transition: width 0.2s;
}

#progress-text {
  margin-top: 10px;
  font-size: 1.2em;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}

.leaf {
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url('../images/leaf_32x32.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.8;
}