/* If you want the hr animation to match text but move at a different speed, you can adjust the duration above */





.upgrade-message {
  display: none;
}

@media (max-width: 319px) { 
  body > *:not(.upgrade-message) {
    display: none !important;
  }
  .upgrade-message {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(1000000deg, #c03802, #220000, #220000,#8c52ff);
    background-size: 300% 300%;
    animation: gradient-animation 20s ease infinite;
    z-index: 9999;
    color: #fff;
    text-align: center;
  }

  .upgrade-message h1 {
   font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 2rem;
  letter-spacing: .03em;
  line-height: 1.15;
  animation: phone-rise 0.9s cubic-bezier(.38,1.46,.56,1.01) 0.1s backwards;
  }

  .hr-gradient {
  border: none;
  height: 2px;
  width: 80%;
  margin: .5rem auto 1rem auto;
  background: linear-gradient(
    90deg,
    #ff3131,
    #fd5b36,
    #b961f9,
    #ff914d,
    #ff3131
  );
  background-size: 300% 300%;
  animation: move-gradient 10s linear infinite;
  animation: phone-rise 0.9s cubic-bezier(.38,1.46,.56,1.01) 0.1s backwards;
}

/* If you want the hr animation to match text but move at a different speed, you can adjust the duration above */

  
  .upgrade-message p {
    color: #fff;
    font-family: 'lato', Arial, sans-serif;
    font-size: 4vw;
    max-width: 83vw;
    white-space: wrap;
    overflow-x: auto;
    margin-top: -5px;
    animation: phone-rise 0.9s cubic-bezier(.38,1.46,.56,1.01) 0.1s backwards;
  }

.upgrade-message .site-message-small {
  font-size: 6.5vw;
  font-weight: 600;
  letter-spacing: -1px;
  display: block;
  color: #fff;
  margin-bottom: -38px;
}

.upgrade-message .site-message-big {
  font-size: 12vw;
  font-weight: 700;
  letter-spacing: -2px;
  display: block;
  line-height: 1.1;
  white-space: nowrap;
  color: inherit;
  margin-bottom: -30px;
}


@keyframes move-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }

   100% {
    background-position: 0% 100%;
  }
}


.gradient-pix {
  background: linear-gradient(
    90deg,
    #ff3131,
    #fd5b36,
    #ff914d,
    #ff3131
  );
  background-size: 300% 300%;
  animation: move-gradient 10s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}


.mobile-img {
  width: 100vw;
  max-width: 230px;
  margin: 0 auto 2.5vw auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.19));
  /* Optional: make image gently rise in on load */
  animation: phone-rise 0.9s cubic-bezier(.38,1.46,.56,1.01) 0.1s backwards;
}
@keyframes phone-rise {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
}