@media (max-width: 1024px) {
  body {
    padding-bottom: 115px !important;
  }

  .vicora-mobile-footer {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 520px;
    height: 92px;
    z-index: 999999;
    border-radius: 999px;
    border: 1.5px solid #c8a96a;
    background:
      radial-gradient(95px 62px at 11% 70%, rgba(12, 255, 233, 0.2), transparent 68%),
      radial-gradient(170px 86px at 66% 8%, rgba(8, 160, 149, 0.22), transparent 64%),
      linear-gradient(90deg, #01201d 0%, #004643 50%, #01201d 100%);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55), 0 0 20px rgba(200, 169, 106, 0.22);
    overflow: hidden;
    isolation: isolate;
  }

  .vicora-mobile-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      linear-gradient(124deg, rgba(255, 255, 255, 0.12) 5%, rgba(255, 255, 255, 0) 35%),
      linear-gradient(292deg, rgba(255, 255, 255, 0.08) 8%, rgba(255, 255, 255, 0) 42%);
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
    animation: vicoraFooterSilk 11s ease-in-out infinite alternate;
  }

  .vicora-mobile-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      linear-gradient(95deg, transparent 0%, rgba(248, 223, 166, 0.32) 24%, transparent 35%),
      linear-gradient(271deg, transparent 0%, rgba(248, 223, 166, 0.2) 16%, transparent 28%);
    mix-blend-mode: screen;
    opacity: 0.45;
    pointer-events: none;
    z-index: 2;
    animation: vicoraFooterStreak 9.5s linear infinite;
  }

  .vicora-mobile-footer-list {
    list-style: none;
    margin: 0;
    padding: 8px 10px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    position: relative;
    z-index: 3;
  }

  .vicora-mobile-footer-item {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vicora-mobile-footer-link {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #e9e1d5;
    position: relative;
  }

  .vicora-mobile-footer-icon {
    width: 28px;
    height: 28px;
    color: #e9e1d5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .vicora-mobile-footer-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .vicora-mobile-footer-label {
    display: none !important;
  }

  .vicora-mobile-footer-item.is-active .vicora-mobile-footer-link {
    background:
      radial-gradient(circle at 14% 82%, rgba(28, 255, 236, 0.45), transparent 53%),
      radial-gradient(circle at 72% 16%, rgba(23, 169, 154, 0.56), transparent 57%),
      linear-gradient(150deg, rgba(5, 56, 52, 0.86), rgba(1, 49, 46, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 60px rgba(0, 255, 230, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -12px 28px rgba(0, 19, 18, 0.5);
    overflow: hidden;
  }

  .vicora-mobile-footer-item.is-active .vicora-mobile-footer-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(118deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 44%);
    opacity: 0.42;
    animation: vicoraFooterGloss 6.5s ease-in-out infinite;
    pointer-events: none;
  }

  .vicora-mobile-footer-item.is-active .vicora-mobile-footer-link::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 26% 34%, rgba(0, 255, 230, 0.32), transparent 52%);
    opacity: 0.66;
    animation: vicoraFooterPulse 4.6s ease-in-out infinite;
    pointer-events: none;
  }

  .vicora-mobile-footer-item.is-active .vicora-mobile-footer-icon,
  .vicora-mobile-footer-item.is-active .vicora-mobile-footer-label {
    color: #ffffff;
  }
}

@media (min-width: 1025px) {
  .vicora-mobile-footer {
    display: none !important;
  }
}

@keyframes vicoraFooterSilk {
  0% {
    transform: translateX(-3%);
    opacity: 0.22;
  }
  100% {
    transform: translateX(3%);
    opacity: 0.31;
  }
}

@keyframes vicoraFooterStreak {
  0% {
    transform: translateX(-22%);
    opacity: 0.28;
  }
  50% {
    opacity: 0.48;
  }
  100% {
    transform: translateX(22%);
    opacity: 0.28;
  }
}

@keyframes vicoraFooterGloss {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes vicoraFooterPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.78;
  }
}
