/*
Theme Name: Defense Cipher Design
Description: Custom Web Systems & Secure Development
Version: 1.0.0
Author: Technical Touch Agency
Author URI: https://technical-touch-sa.com
Template: astra
*/
.coming-soon-text {
  font-size: 48px;
  font-weight: bold;
  display: inline-block;
  color: #ffbf48;
  animation: swirlGlow 4s linear infinite;
}

@keyframes swirlGlow {
  0% {
    transform: rotate(0deg) scale(1);
    color: #ffbf48;
    text-shadow: 0 0 5px #ffbf48;
  }
  25% {
    transform: rotate(15deg) scale(1.05);
    color: #be4a1d;
    text-shadow: 0 0 10px #be4a1d;
  }
  50% {
    transform: rotate(-15deg) scale(1.1);
    color: #ffbf48;
    text-shadow: 0 0 15px #ffbf48;
  }
  75% {
    transform: rotate(15deg) scale(1.05);
    color: #be4a1d;
    text-shadow: 0 0 10px #be4a1d;
  }
  100% {
    transform: rotate(0deg) scale(1);
    color: #ffbf48;
    text-shadow: 0 0 5px #ffbf48;
  }
}
