.sondakika {
  width: 100%;
  height: 40px;
  background-color: rgb(217, 56, 56);
  /* TEK RENK */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Rubik', sans-serif;
  overflow: hidden;
}

.sondakika .wrapper {
  width: 80%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 15px;
}

.sondakika .label {
  color: #fff;
  font-family: 'Audiowide';
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  animation: pulse 1.4s ease-in-out infinite;

}

@keyframes pulse {
  0% {
    opacity: 1;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
  }

  50% {
    opacity: 0.4;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
  }

  100% {
    opacity: 1;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
  }
}

.sondakika .marquee {
  position: relative;
  width: 80%;
  height: 100%;
  overflow: hidden;
}

/* FADE – ARKA PLANLA BİREBİR */
.sondakika .fade {
  position: absolute;
  top: 0;
  width: 22px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.sondakika .fade-left {
  left: 0;
  background: linear-gradient(to right,
      rgb(217, 56, 56),
      rgba(179, 0, 0, 0));
}

.sondakika .fade-right {
  right: 0;
  background: linear-gradient(to left,
      rgb(217, 56, 56),
      rgba(179, 0, 0, 0));
}

.sondakika .news-link {
  position: absolute;
  top: 50%;
  left: 0;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  transform: translate(0, -50%);
  will-change: transform;
  z-index: 1;
  font-weight: 700;
}

@media (max-width: 700px) {
  .sondakika .wrapper {
    width: 90%;
  }

  .sondakika .marquee {
    width: 95%;
  }
}