.whatsnew-ticker {
  background-color: #485268;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 15px;
  height: 40px;
  line-height: 30px;
  position: relative;
  width: 100%;
}

.whatsnew-title {
  font-size: 24px;
  color: #485268;
  text-align: center;
  margin-bottom: 15px;
}

.whatsnew-ticker {
  background-color: #485268;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 15px;
  height: 40px;
  line-height: 30px;
  position: relative;
}

.whatsnew-ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-scroll-whatsnew 30s linear infinite;
  animation-play-state: running;
}

.whatsnew-ticker:hover span {
  animation-play-state: paused;
  cursor: pointer;
}

@keyframes ticker-scroll-whatsnew {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.whatsnew-list {
  list-style-type: disc;
  padding-left: 20px;
}

.whatsnew-list li {
  margin-bottom: 8px;
}

.whatsnew-list a {
  color: #485268;
  font-weight: bold;
  text-decoration: none;
}

.whatsnew-list a:hover {
  text-decoration: underline;
}

