/* === TICKER CARD – güçlü versiyon (her şey !important) === */
.ticker-card {
  --accent: var(--tf-active, #5cc22e) !important;
  --bg-1: var(--tf-bg2, #0e0f10) !important;
  --bg-2: var(--tf-bg, #111311) !important;
  --text: var(--tf-tc, #eceff0) !important;
  --muted: #9aa0b5 !important;

  position: relative !important;
  display: block !important;
  width: 220px !important;
  min-width: 0 !important;
  padding: 12px !important;
  border-radius: 16px !important;

  background:
    linear-gradient(160deg, #ffffff0d 0, #ffffff05 55%, #0000 65%) no-repeat,
    radial-gradient(900px 300px at -20% -60%, #ffffff10, #0000 70%) no-repeat,
    linear-gradient(180deg, var(--bg-1) 0, var(--bg-2) 100%) !important;
  box-shadow:
    inset 0 0 0 1px #ffffff12,
    0 8px 24px #00000040 !important;
  color: var(--text) !important;
  text-decoration: none !important;
  overflow: hidden !important;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    border-color .25s ease !important;
}

/* Hover / Focus */
.ticker-card:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    inset 0 0 0 1px color-mix(in oklab, var(--accent) 30%, #0000),
    0 12px 28px #00000066 !important;
}
.ticker-card:focus-within {
  outline: none !important;
  box-shadow:
    inset 0 0 0 2px color-mix(in oklab, var(--accent) 55%, #0000),
    0 0 0 6px color-mix(in oklab, var(--accent) 18%, #0000) !important;
}

/* Dekoratif parıltılar */
.ticke
