/* ================= VOLSUR TICKER ================= */
.volsur-ticker-container {
  position: relative;
  width: 100%;
  background-color: #0b1120;
  border-bottom: 1px solid rgba(220, 165, 50, 0.35);
  color: #ffffff;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 40px;
  box-sizing: border-box;
  z-index: 999;
}

.volsur-ticker-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 900px;
}

.vt-viewport {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 24px;
  overflow: hidden;
}

.vt-item {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.vt-item.active {
  display: flex;
  animation: vtFadeAnim 0.3s ease-in-out;
}

@keyframes vtFadeAnim {
  from { opacity: 0; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(0); }
}

.vt-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.vt-tag.promo {
  background-color: #dca532;
  color: #0b1120;
}

.vt-tag.info {
  background-color: #0284c7;
  color: #ffffff;
}

.vt-text {
  color: #f1f5f9;
  font-weight: 400;
}

.vt-link {
  color: #e2b350;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
  margin-left: 2px;
}

.vt-link:hover {
  color: #ffd875;
}

.vt-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.vt-btn:hover {
  background: rgba(220, 165, 50, 0.3);
  border-color: #dca532;
}

.vt-close {
  position: absolute;
  right: 14px;
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.vt-close:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .volsur-ticker-container {
    padding: 8px 30px 8px 10px;
    font-size: 12px;
  }
  .vt-item {
    flex-wrap: wrap;
    gap: 4px;
  }
}