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

.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 #ffffff20;
}

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

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

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

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

.gi-trend-svg {
  width: 14px;
  height: 14px;
  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: #f87171; 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;
}