    .data span {
      color: #fff;
    }
    .dayi{cursor: pointer;}

    img#resim {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      cursor: pointer;
    }
    .playing-station {
      position: relative;
      transform: scale(0.85);
      z-index: 2;
    }
    .playing-station:after {
      content: "";
      display: block;
      width: 95px;
      height: 95px;
      border-radius: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 1; /* Değişiklik burada */
      transform: translate(-50%, -50%) scale(1.15);
      animation: playStationAnim linear 1.3s;
      animation-iteration-count: infinite;
    }
    @keyframes playStationAnim {
      0% {
        box-shadow: 0 0 0 0 rgb(3 134 254 / 50%);
      }
      100% {
        box-shadow: 0 0 0 17px rgb(3 134 254 / 0%);
      }
    }
    .dayi {
      width: 100px;
      height: 100px;
      position: relative; /* Değişiklik burada */
      z-index: 2; /* Değişiklik burada */
    }
    .ucus {
    position: fixed;
    left: 11px;
    top: 74px;
}
div#info span {
    color: #c7cbd6;
}