.card-collections-content {
    width: 28rem;
}

.collections-img {
    z-index: 2;
    right: 0;
    position: absolute;
    bottom: 0;
}

.collections_img_shadow {
    border-radius: 22px;
    right: 0;
    position: absolute;
    bottom: 0;
    width: 28rem;
    height: 10rem;
    background: linear-gradient(0deg, #151922, transparent);
    pointer-events: none;
    z-index: 3;
    transition: 0.5s ease;
}

.collections-back-1 {
    top: 1.5rem;
    right: 20rem;
    height: 5rem;
    width: 5rem;
    position: absolute;
    z-index: 1;
}

.collections-back-2 {
    z-index: 5;
    top: 6.5rem;
    right: 2rem;
    height: 4rem;
    width: 4rem;
    position: absolute;
}

.collections_button {
    height: 3.125rem;
    width: max-content;
    z-index: 3;
    padding-block: 0.86rem;
    border-radius: var(--br-12);
    overflow: hidden;
    gap: .5625rem;
    padding-inline: 1.096rem;
    position: relative;
    display: flex;
    align-items: center;
}

.collections_button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(90, 147, 227, 0.24);
  transition: background 0.2s ease;
}

.collections_button:hover::before {
  background: rgba(90, 147, 227, 0.4);
}

.collections_button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 25, 34, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.collections_button_text,
.collections_button svg {
    color: var(--span);
    fill: var(--span);
    z-index: 6;
}

.collections_button svg  {
    width: 1.375rem;
    height: 1.375rem;
}

.collections-top {
    gap: .5625rem;
    border-radius: var(--br-12);
    padding-block: .5625rem;
    padding-inline: .6875rem;
    width: max-content;
    background: #252C3B;
    display: flex;
    align-items: center;
    z-index: 3;
    bottom: 1.8rem;
    right: 3.1875rem;
    position: absolute;
}

.collections-top img {
    width: 2.0625rem;
    height: 2.0625rem;
    border-radius: var(--br-8);
}

.collections-top svg {
    left: -0.9rem;
    height: 1.5rem;
    width: 1.5rem;
    fill: #FFCE64;
    position: absolute;
}

.collections-player-name {
    font-weight: var(--font-weight-5);
    color: var(--text-default);
}

.collections-circle {
    border-radius: 50%;
    background: var(--text-secondary);
    height: .3rem;
    width: .3rem;
}

.collections-name {
    color: var(--text-secondary);
}

.card-desc-text {
    color: var(--span);
    text-decoration: underline;
}

@media (max-width: 940px) {
    .collections-img {
        right: -4rem;
    } 

    .collections-back-1 {
        right: 14rem;
    }

    .collections-back-2 {
        display: none;
    }
}

@media (max-width: 860px) {
    .collections-top {
        display: none;
    }
}


@media (max-width: 768px) {
    .card-collections-content {
        width: 6rem;
    }

    .collections-img {
        z-index: 2;
        max-width: 300px;
        height: auto;
        right: -3rem;
    }

    .collections_img_shadow {
        width: 10rem;
        height: 4rem;
    }

    .collections-back-1 {
        top: 2rem;
        right: 7rem;
        height: 3.5rem;
        width: 3.5rem;
    }

    .collections-back-2 {
        top: 5rem;
        right: 1rem;
        height: 3rem;
        width: 3rem;
    }

    .collections_button {
        height: 2.5rem;
        gap: .4rem;
        z-index: 3;
    }

    .collections_button svg {
        width: 1.1rem;
        height: 1.1rem;
    }

    .button-link-clans svg {
        width: 1.1rem !important;
        height: 1.1rem !important;
    }

    .collections-top {
        display: none;
    }

    .collections-top img {
        width: 1.75rem;
        height: 1.75rem;
    }

    .collections-top svg {
        left: -0.9rem;
        height: 1.25rem;
        width: 1.25rem;
    }
}