/* Start custom CSS for html, class: .elementor-element-285a6a5 */.airise-mobile-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 12px 0;
  z-index: 9999;
}

.footer-login-button {
  background: #111;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 0 18px #0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
}

.footer-login-button img {
  width: 48px;
  height: 48px;
  filter: grayscale(1);
  transition: transform 1.5s linear, filter 0.3s;
}

.footer-login-button.logged-in img {
  filter: none;
  animation: none;
}

.footer-login-button.logged-in {
  animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
  0%   { box-shadow: 0 0 8px #0ff; }
  50%  { box-shadow: 0 0 18px #0ff; }
  100% { box-shadow: 0 0 8px #0ff; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes rotate-once {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.rotate-once {
  animation: rotate-once 2s linear;
}

.footer-submenu {
  position: absolute;
  bottom: 90px;
  background: rgba(0, 0, 0, 0.95);
  padding: 16px;
  border-radius: 14px;
  flex-direction: column;
  gap: 14px;
  width: 92%;
  max-width: 360px;
  text-align: left;
  box-shadow: 0 0 20px #0ff2;
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex;
  visibility: hidden;
}

.footer-submenu.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
  visibility: visible;
}

.footer-submenu a,
.footer-submenu .submenu-title {
  color: #0ff;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 16px;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease;
}

.footer-submenu a:hover {
  background: #111;
}

.submenu-group {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.submenu-title {
  background: #0ff2;
  color: #111;
  font-weight: 700;
  cursor: default;
}/* End custom CSS */