
html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #FFFFFF;
}

body.theme-dark {
    background-color: #111;
}


/* Loader */
.preloader {
  position: fixed;
  inline-size: 100%;
  block-size: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.theme-dark .preloader {
  background-color: #111;
  color: #FFF;
}

.preloader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  width: 200px;
}

.premium-progress {
  width: 250px;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
}

.theme-dark .premium-progress {
  background: rgba(255, 255, 255, 0.05);
}

.premium-progress-bar {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #E2B96C, rgba(226, 185, 108, 0.7), #E2B96C);
  border-radius: 10px;
  animation: loaderProgress 2s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(226, 185, 108, 0.4);
}

.preloader-text {
  font-family: Arial, sans-serif;
  color: rgba(226, 185, 108, 0.8);
  font-size: 14px;
  letter-spacing: 1.2px;
  font-weight: 500;
  margin-top: 10px;
}

.preloader-footer {
  position: absolute;
  bottom: 50px;
  font-family: Arial, sans-serif;
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
}

.theme-dark .preloader-footer {
  color: rgba(255, 255, 255, 0.3);
}

/* Utility classes if needed for future preloader tweaks */
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.flex-column {
  flex-direction: column;
}
.gap-3 {
  gap: 1rem;
}
.gap-4 {
  gap: 1.5rem;
}
.gap-5 {
  gap: 3rem;
}
@keyframes loaderProgress {
  0% { transform: translateX(-100%); }
  50% { width: 70%; }
  100% { transform: translateX(200%); }
}
@keyframes logoPulseScale {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.05); opacity: 1; }
}

/*
html,
body {
    height: 100%;
    width: 100%;
    background-color: #FFFFFF;
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.continuous-4 {
  width: 120px;
  height: 22px;
  border-radius: 40px;
  color: #039D55;
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.continuous-4::before {
  content: "";
  position: absolute;
  margin: 2px;
  width: 14px;
  top: 0;
  bottom: 0;
  left: -20px;
  border-radius: inherit;
  background: currentColor;
  box-shadow: -10px 0 12px 3px currentColor;
  clip-path: polygon(0 5%, 100% 0,100% 100%,0 95%,-30px 50%);
  animation: ct4 1s infinite linear;
}

@keyframes ct4 {
  100% {left: calc(100% + 20px)}
}

body {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  grid-auto-rows: 130px;
  place-items:center;
}

* {
  box-sizing: border-box;
}
*/
