      /* .story-container {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 30px;
      justify-content: center;
    }

 .story {
      position: relative;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      background: linear-gradient(white, white) padding-box,
                  conic-gradient(red, yellow, green, blue, purple, red) border-box;
      margin: 10px;
    }
    

    .story .circle {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: linear-gradient(white, white) padding-box,
                  conic-gradient(red, yellow, green, blue, purple, red) border-box;
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    .card {
      display: none;
      position: relative;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 460px;
      border-radius: 10px;
      background-color: #94d2e9;
      cursor: pointer;
      z-index: 9999;
    }

    .progress_bar_wrap {
      width: 100%;
      height: 5px;
      border-radius: 10px;
      background: #848380;
    }

    .progress_bar {
      width: 0;
      height: 5px;
      border-radius: 10px;
      background: #fff;
    }

    .card_controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px;
    }

    .profile {
      display: flex;
      align-items: center;
      gap: 5px;
      font-weight: 600;
      font-size: 14px;
    }

    .profile img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    .yours {
      color: #fff;
    }

    .controls {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .close {
      font-size: 20px;
      color: white;
      cursor: pointer;
    }
    
    .modal-img {
      width: 100%;
      height: calc(100vw * var(--aspect-ratio));
      object-fit: cover;
      z-index: 555;
      margin-top: 5rem;
      position: relative;
    }

    #card-main-img{

    }

    @media (max-width: 768px) {
      .story {
        width: 80px;
        height: 80px;
      }

      .close {
        top: 20px;
        right: 15px;
      }

      .modal-img {
        width: 80vw;
        height: calc(100vw * var(--aspect-ratio2));
      }
    }
*/
    #popupx {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 500px;
      background: white;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      border-radius: 8px;
      z-index: 1000;
      display: none;
    }

    @media (max-width: 600px) {
      #popupx {
        width: 80%;
        padding: 10px;
      }
    }

    #closePopup {
      cursor: pointer;
      border: none;
      background-color: transparent;
      font-size: 25px;
    }

    .color-logo {
      display: flex;
    }

    .color-logo.hidden {
      display: none;
    }

    .white-logo {
      display: flex;
    }

    .white-logo.hidden {
      display: none;
    }

    .otherlogo {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-right: 20px;
    }

    @media screen and (max-width: 768px) {
      .color-logo {
        flex-wrap: wrap;
        margin-right: 10px;
        justify-content: center;
        width: 125px;
        height: 100%;
      }
    }

    .bosluklu-div {
      margin-top: 200px;
    }
