.gold-index-ticker-container {
  all: unset;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 999999;
  direction: rtl;
  height: 56px;
  background-color: #251600;
  color: #d38301;
  font-family: 'Tajawal', sans-serif;
  font-size: 23px;
  border-radius: 0px;
  backdrop-filter: blur(10px); background-color: #251600cc; border: 1px solid #d3830110;
}

.gi-ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: gi-scroll 40s linear infinite;
}

.gi-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border-left: 1px solid #d3830120;
}

.gi-item:last-child {
  border-left: none;
}

.gi-label {
  opacity: 0.7;
  font-size: 21px;
}

.gi-price-gold {
  color: #ffffff;
  font-weight: bold;
}

.gi-price-silver {
  color: #ffffff;
  font-weight: bold;
}

.gi-trend-svg {
  width: 23px;
  height: 23px;
  display: inline-block;
  vertical-align: middle;
}

.gi-trend-up { color: #4ade80; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gi-trend-down { color: #e22400; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gi-trend-balance { opacity: 0.3; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@keyframes gi-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.gi-ticker-content:hover {
  animation-play-state: paused;
}