@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1, h2, h3 {
    font-size: 18px;
  }

  .footer-link, .btn, .section-text {
    font-size: 13px;
    padding: 8px 12px;
  }

  .column {
    width: 100%;
    margin-bottom: 20px;
  }
}@media screen and (max-width: 768px) {
  .footer-columns {
    display: block;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
}@media screen and (max-width: 600px) {
  .hero-slide {
    background-size: cover;
    background-position: center;
    height: auto;
    padding: 60px 20px;
  }

  .hero-slide h1 {
    font-size: 24px;
  }
}.gold-text {
  color: #FFD700 !important;
}.white-text {
  color: #FFFFFF !important;
}.black-text {
  color: #000000 !important;
}
@keyframes myAnim {
	0% {
		opacity: 0;
		transform: rotate(-540deg) scale(0);
	}

	100% {
		opacity: 1;
		transform: rotate(0) scale(1);
	}
}.roll-forward {
    animation: myAnim 2s ease 0s 1 normal forwards;#aselary-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #0f0f0f, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 99999;
}

.aselary-wave-track {
  width: 80%;
  height: 10px;
  background: #1a1a1a;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 0 20px #00c4ff88;
}

.aselary-pulse {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #00f7ff, #00ff88, #00f7ff);
  animation: aselaryPulse 3s infinite ease-in-out;
  border-radius: 5px;
}

@keyframes aselaryPulse {
  0% { width: 0%; }
  50% { width: 100%; }
  100% { width: 0%; }
}

.aselary-load-percent {
  color: #00f7ff;
  font-size: 32px;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px #00f7ff;
  animation: percentPulse 1.5s infinite;
}

@keyframes percentPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
    }