.mascot-video {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
}

.mascot-container {
  display: none; /* скрыты по умолчанию */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  margin: 20px auto;
  max-width: 400px;
}

.mascot-container.active {
  display: flex;
}

.mascot-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 12px 0 8px;
}

.mascot-subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.mascot-container button {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.mascot-spinner {
  animation: spin 2s linear infinite;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mascot-spinner video {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
}

/* Эмодзи-заглушка, если видео ещё не загружено */
.mascot-fallback {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  border-radius: 50%;
  background: #fff3e0;
}
