.page-loader-wrapper {
  z-index: 9999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.page-loader-wrapper .loader-content .loader-text-content {
  display: block;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.page-loader-wrapper .loader-content .loader-text-content .text-loader-content-wrap {
  transform: translateY(-100%);
  position: relative;
  display: inline-block;
}

.page-loader-wrapper .loader-content .loader-text-content .text-loader-content-wrap .loader-text {
  opacity: 1 !important;
  font-size: 60px;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1.4;
  position: relative;
  font-weight: bold;
}

.page-loader-wrapper .loader-content .loader-text-content .text-loader-content-wrap .loader-text-progress {
  opacity: 1 !important;
  font-size: 60px;
  letter-spacing: -1.5px;
  position: absolute;
  line-height: 1.4;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-image: linear-gradient(90deg, #000 0%, #000 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-weight: bold;
}

.page-loader-wrapper .loader-content .loader-progress-wrap {
  display: block;
  opacity: 1 !important;
  width: 90px;
  position: relative;
  height: 3px;
  margin: 0 auto;
}

.page-loader-wrapper .loader-content .loader-progress-wrap .loader-progress-line {
  border-radius: 5px;
  position: absolute;
  left: 0;
  height: 3px;
  top: 0;
  width: 0;
  z-index: 5;
}

.page-loader-wrapper .loader-content .loader-progress-wrap .loader-bg {
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
}

.page-loader-wrapper.loading-complete {
  display: none !important;
}

/* Skip Button Styles */
.tpl-loader-skip-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 12px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  outline: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.tpl-loader-skip-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.2);
}

.tpl-loader-skip-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.tpl-loader-skip-btn .tpl-skip-icon {
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
}

.tpl-loader-skip-btn .tpl-skip-text {
  line-height: 1;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-loader-wrapper .loader-content .loader-text-content .text-loader-content-wrap .loader-text,
  .page-loader-wrapper .loader-content .loader-text-content .text-loader-content-wrap .loader-text-progress {
    font-size: 40px;
  }
  
  .tpl-loader-skip-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .tpl-loader-skip-btn .tpl-skip-icon {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-loader-wrapper .loader-content .loader-text-content .text-loader-content-wrap .loader-text,
  .page-loader-wrapper .loader-content .loader-text-content .text-loader-content-wrap .loader-text-progress {
    font-size: 30px;
  }
}
