﻿@keyframes blinkScale {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ⭐ 强制居中容器（不受主题影响） */
.blink-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  width: 100% !important;
  margin: 15px 0 25px 0;
}

/* ⭐ 闪烁元素 */
.blink-text {
  animation: blinkScale 1.1s ease-in-out infinite;

  color: #ffffff;
  background-color: #d32f2f;

  padding: 8px 18px;
  border-radius: 6px;

  font-size: 18px;
  font-weight: bold;
  text-align: center;

  line-height: 1.4;
}