<style>
/* Loader Background */

.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #ffffff, #f3f6ff);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Wrapper */
.dimension-wrapper {
  text-align: center;
}

/* Rotating 3D Shape */
.rotating-shape {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 20px;
  background: linear-gradient(45deg, #1f3342, #6a2b6a);
  animation: rotate 2.5s linear infinite, pulse 2s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

/* Rotation */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Glow Pulse */
@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(180deg); }
}

/* Text */
.brand-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: system-ui, sans-serif;
  background: linear-gradient(45deg, #1f3342, #6a2b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
</style>