@keyframes landscapeRotate {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
}

.phoneRotateContainer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(320px, calc(100vw - 24px));
  padding: 14px 16px;
  border: 1px solid rgba(196, 134, 142, 0.16);
  border-radius: 24px;
  background: rgba(255, 252, 251, 0.88);
  box-shadow: 0 18px 38px -24px rgba(70, 49, 55, 0.4);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 4;
}

.phoneRotateContainer.isVisible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.phoneRotate {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phoneRotate img {
  width: 42px;
  flex-shrink: 0;
  animation: 2.1s ease-in-out infinite landscapeRotate;
}

.phoneRotate .text {
  font-size: 14px;
  line-height: 1.55;
  white-space: normal;
  color: var(--body);
}

@media (min-width: 768px) {
  .phoneRotateContainer {
    display: none;
  }
}
