#accountStatusModal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,10,20,0.65);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#accountStatusModal.hidden { display: none; }
.status-card-modal {
  background: #23243a;
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  border-radius: 22px;
  max-width: 370px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(245,87,108,0.17);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: modalBounceIn 0.5s;
}
.status-card-modal svg {
  margin-bottom: 1.1rem;
}
#accountStatusTitle {
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
}
#accountStatusMsg {
  color: #f5576c;
  font-size: 1.08rem;
  text-align: center;
  margin-bottom: 1.7rem;
  line-height: 1.6;
}
#accountStatusLogoutBtn {
  background: #f5576c;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px #f5576c22;
  transition: background 0.2s;
}
#accountStatusLogoutBtn:hover {
  background: #e13b5a;
}
@keyframes modalBounceIn {
  0% { transform: scale(0.7) translateY(60px); opacity: 0; }
  60% { transform: scale(1.1) translateY(-10px); opacity: 1; }
  80% { transform: scale(0.98) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}
