/* Плавная анимация стрелки */
.arrow {
    transition: transform 0.3s ease;
}

/* При наведении на карточку */
.card:hover .arrow {
    transform: translateX(-8px);
}

.card {
    border: 1px solid transparent;
    transition: 
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.card:hover {
    background-color: #0A1006;
    border-color: #6F8C32;
    transform: translateY(-4px);
}

/*body {*/
/*    background: #050505;*/
/*}*/

/*body::before {*/
/*    content: "";*/
/*    position: fixed;*/
/*    inset: 0;*/
/*    z-index: -1;*/

/*    background:*/
/*        radial-gradient(*/
/*            circle at 15% 10%,*/
/*            rgba(111,140,50,.25),*/
/*            transparent 55%*/
/*        );*/
/*}*/