
.animated-ticker {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #FF512F, #DD2476, #FF512F);
  background-size: 300% 300%;
  animation: animated-bg 10s ease infinite;
  height: 120px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}
.logo-wrapper.sticky-logo {
  flex-shrink: 0;
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-right: 4px solid #fff;
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  animation: stylish-logo 3s ease-in-out infinite;
}
.logo-icon {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e60000;
}
.ticker-strip {
  display: flex;
  align-items: center;
  animation: slide-text 20s linear infinite;
  white-space: nowrap;
  margin-left: 140px;
}
.ticker-message {
  font-size: 18px;
  color: #fff;
  margin-right: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.ticker-button {
  background-color: #ffffff;
  color: #e60000;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  margin-left: 20px;
  font-weight: bold;
  cursor: pointer;
  animation: pulse 2s infinite;
}
.person-entry {
  display: flex;
  align-items: center;
  margin: 0 30px;
}
.ticker-icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}
.person-details {
  font-size: 16px;
  font-weight: bold;
}
.name { color: #ffffff; }
.city { color: #ffff66; }
.country { color: #66ffcc; }

@keyframes slide-text {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
@keyframes stylish-logo {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px #ff5f6d; }
  50% { transform: scale(1.1); box-shadow: 0 0 20px #ffc371; }
}
@keyframes animated-bg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
