.announcement-bar {
  background: linear-gradient(90deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 8px 0;
  overflow: hidden;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  height: 75px;
  display: flex;
  align-items: center;
}


.clickable {
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.clickable:hover {
  color: #ffeaa7;
}

.announcement-bar:hover {
  background: linear-gradient(90deg, #ee5a24, #ff6b6b);
}

.announcement-content {
  display: inline-block;
  white-space: nowrap;
  animation: announcement 25s linear infinite;
  padding-right: 50px; /* Smooth loop için */
  width: 100%;
}

/* Hover'da animasyonu durdur */
.announcement-bar:hover .announcement-content {
  animation-play-state: paused;
}

.badge {
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  margin: 0 15px;
  transition: all 0.3s ease;
}

/* Hover'da badge'leri vurgula */
.announcement-bar:hover .badge {
  background: rgba(255,255,255,0.3);
  transform: scale(1.05);
}

@keyframes announcement {
  0% { 
    transform: translateX(100%); 
  }
  100% { 
    transform: translateX(-100%); 
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .announcement-bar {
    font-size: 12px;
    padding: 6px 0;
  }
  
  .badge {
    font-size: 10px;
    margin: 0 8px;
    padding: 1px 6px;
  }
  
  .announcement-content {
    animation: announcement 15s linear infinite;
  }
}