body {
  font-family: Tahoma, Arial, sans-serif;
  background-image:url('assets/bgsky8.gif');
  background-repeat:repeat;
}
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}


.feed-item {
  background-color: #c0c0c0;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  padding: 10px;
  margin-bottom: 6px;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.animate-ticker {
  animation: ticker 10s linear infinite;
  will-change: transform;
}

.rainbow-text{
	position: relative;
	color: #000;
	background: #fff;
	mix-blend-mode: multiply;
  overflow: hidden;
  
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  padding: 2px 4px 6px;
  margin: -2px -4px -6px;
}
.rainbow-text::before{
	content: "";
	position: absolute;
	top:0;right:0;bottom:0;left:-100%;
	background: white repeating-linear-gradient(90deg, #14ffe9 0%, #ffc800 16.66666%, #ff00e0 33.33333%, #14ffe9 50.0%);
	mix-blend-mode: screen;
	pointer-events: none;
  animation: move 1s linear infinite;
}

@keyframes move{
  0%{transform: translateX(0);}
  100%{transform: translateX(50%);}
}

@supports not (mix-blend-mode: multiply) {
	.rainbow-text{
	-webkit-text-fill-color: transparent;
	background-clip: text !important;
	background: white repeating-linear-gradient(90deg, #14ffe9, #ffc800, #ff00e0, #14ffe9);
    text-shadow: none;
	}
	.rainbow-text::before{ content: none; }
}

.qbit {
  font-family: monospace;
  font-size: 24px;
  display: flex;
  gap: 2px;
  align-items: center;
}

.ket {
  font-size: 28px; /* makes the bracket feel “wider” */
  transform: scaleX(1.2);
}