.game-card__art--arcano {
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.58), transparent 30%),
        color-mix(in srgb, var(--blue) 11%, var(--canvas));
}

.game-card__art--arcano::after {
    border-color: rgba(73, 103, 214, 0.08);
}

.arcano-card-preview {
    position: relative;
    z-index: 1;
    width: 154px;
    height: 104px;
    padding: 10px;
    border: 4px solid var(--ink);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 28px rgba(31, 37, 34, 0.2);
    transform: rotate(-2deg);
}

.arcano-card-preview__bricks {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
}

.arcano-card-preview__bricks span {
    height: 12px;
    border: 1.5px solid var(--ink);
    border-radius: 3px;
    background: var(--lime);
}

.arcano-card-preview__bricks span:nth-child(3),
.arcano-card-preview__bricks span:nth-child(7) {
    background: var(--blue);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.48);
}

.arcano-card-preview__bricks span:nth-child(5) {
    position: relative;
    background: var(--coral);
}

.arcano-card-preview__bricks span:nth-child(5)::after {
    content: "✦";
    position: absolute;
    inset: -3px 0 0;
    display: grid;
    place-items: center;
    font-size: 0.5rem;
}

.arcano-card-preview__paddle {
    position: absolute;
    bottom: 9px;
    left: 50%;
    width: 62px;
    height: 8px;
    border-radius: 999px;
    background: var(--ink);
    transform: translateX(-50%);
}

.arcano-card-preview__paddle::after {
    content: "";
    position: absolute;
    inset: 2px 11px;
    border-radius: inherit;
    background: var(--lime);
}

.arcano-card-preview__ball {
    position: absolute;
    right: 43px;
    bottom: 27px;
    width: 12px;
    height: 12px;
    border: 2.5px solid var(--ink);
    border-radius: 50%;
    background: white;
    box-shadow: -9px -13px 0 -4px rgba(73, 103, 214, 0.42);
}

.arcano-card-preview__drop {
    position: absolute;
    left: 28px;
    bottom: 27px;
    padding: 3px 5px;
    border: 1.5px solid var(--ink);
    border-radius: 5px;
    color: white;
    background: var(--blue);
    font-size: 0.42rem;
    font-style: normal;
    font-weight: 900;
}
