  .coverflow-widget {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px 16px 24px;
    background: radial-gradient(1200px 620px at 50% 0%, #232a44 0%, #10131f 45%, #07080d 100%);
    border-radius: 20px;
    color: #fff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
  }

  .coverflow {
    --cf-spread: 1;
    position: relative;
    height: 600px;
    perspective: 1500px;
    perspective-origin: 50% 45%;
    touch-action: pan-y;
  }

   .coverflow .wp-block-image {
    position: absolute !important;
    top: 50%;
    left: 50%;
    width: 300px;

    margin: 0;
    border-radius: 35px;
    overflow: hidden;
    cursor: pointer;
    transform-origin: 50% 50%;
    transition: transform .65s cubic-bezier(.22, .75, .3, 1), opacity .65s ease, filter .65s ease, box-shadow .65s ease;
    will-change: transform, opacity;
    background: #1a1f2e;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .coverflow:not(.is-ready) .wp-block-image {
    transition: none;
  }

  .coverflow .wp-block-image.is-active {
    cursor: default;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .14);
  }

  .coverflow .wp-block-image a {
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
  }

  .coverflow .wp-block-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
  }

  .coverflow-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
  }

  .coverflow-nav button {
    width: 54px;
    height: 54px;
    padding: 0 0 4px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-family: inherit;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
  }

  .coverflow-nav button:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .45);
    transform: translateY(-2px);
  }

  .coverflow-nav button:active {
    transform: translateY(0) scale(.94);
  }

  @media (max-width: 900px) {
    .coverflow {
      height: 370px;
      perspective: 1300px;
    }

    .coverflow .wp-block-image {
      width: 240px;
      height: 312px;
    }
  }

  @media (max-width: 600px) {
    .coverflow-widget {
      padding: 20px 10px 16px;
      border-radius: 16px;
    }

    .coverflow {
      --cf-spread: .78;
      height: 300px;
      perspective: 1050px;
    }

    .coverflow .wp-block-image {
      width: 184px;
      height: 246px;
      border-radius: 13px;
    }

     .coverflow .wp-block-image img {
      border-radius: 13px;
    }

    .coverflow-nav {
      gap: 12px;
      margin-top: 10px;
    }

    .coverflow-nav button {
      width: 46px;
      height: 46px;
      font-size: 24px;
    }
  }