    body {
      background-color: #0b0c2a;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      overflow: hidden;
    }

    .logo {
      width: 200px;
      height: 200px;
      animation: rotate 1s linear infinite;
    }

    @keyframes rotate {
      0% { transform: rotate(90deg); }
      100% { transform: rotate(360deg); }
    }

    .text {
      position: absolute;
      bottom: 50px;
      font-family: sans-serif;
      color: #eca900;
      font-size: 18px;
      opacity: 0.7;
    }html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-color: #0b0c2a;
  font-family: 'Segoe UI', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Responsive Logo */
.logo {
  width: 180px;
  height: 180px;
  max-width: 90vw;
  max-height: 90vw;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(90deg); }
  100% { transform: rotate(360deg); }
}

/* Bottom Text */
.text {
  margin-top: 30px;
  font-size: 16px;
  color: #eca900;
  opacity: 0.8;
}

/* Ensure text scales on smaller screens */
@media (max-width: 500px) {
  .logo {
    width: 120px;
    height: 120px;
  }

  .text {
    font-size: 14px;
    padding: 0 20px;
  }
}
