body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: 'Rajdhani', 'Roboto', 'Inter', 'Helvetica Neue', sans-serif;
  background: linear-gradient(135deg, #1B264F 0%, #2a3a6b 100%);
  color: #ffffff;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.splash-screen span {
  color: #ffffff;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 0;
  height: auto !important;
  width: auto !important;
}

.plancete-splash-logo {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.plancete-splash-logo .logo-p {
  font-family: 'Rajdhani', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #F2873B; /* Plancete Orange */
  position: absolute;
  z-index: 2;
}

.plancete-splash-logo .gears {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plancete-splash-logo .gear {
  position: absolute;
  border-radius: 50%;
  border: 3px solid #586F7C; /* Plancete Grey */
  box-sizing: border-box;
}

.plancete-splash-logo .gear-1 {
  width: 50px;
  height: 50px;
  left: 0;
  top: 0;
  transform: rotate(0deg);
  animation: spin 10s linear infinite;
}

.plancete-splash-logo .gear-2 {
  width: 35px;
  height: 35px;
  right: 0;
  bottom: 0;
  transform: rotate(0deg);
  animation: spin-reverse 10s linear infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
