.ticarigm360-header-bar {
  width: 100%;
  background-color: var(--wp--preset--color--background, #0f172a);
  color: var(--wp--preset--color--foreground, #ffffff);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  box-sizing: border-box;
  overflow-x: auto;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.ticarigm360-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.ticarigm360-item {
  background: rgba(255,255,255,0.06);
  padding: 6px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.ticarigm360-item strong {
  font-weight: 700;
}

.ticarigm360-loading {
  opacity: 0.7;
  font-style: italic;
  animation: pulse 1.5s infinite;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

.ticarigm360-up {
  background-color: rgba(0,255,0,0.15) !important;
}

.ticarigm360-down {
  background-color: rgba(255,0,0,0.15) !important;
}

@media (max-width: 768px) {
  .ticarigm360-header-bar {
    font-size: 12px;
    padding: 4px;
  }
  .ticarigm360-container {
    gap: 8px;
  }
  .ticarigm360-item {
    padding: 4px 6px;
  }
}