.reviews-ticker {
    padding: 100px 0;
    background: #000;
    overflow: hidden;
    width: 100%;
}

.ticker-wrapper {
    display: flex;
    width: max-content;
}

.ticker-track {
    display: flex;
    gap: 25px;
    padding-right: 25px; /* Совпадает с gap */
    animation: scroll-infinite 35s linear infinite;
}

/* Однотипная карточка */
.review-item {
    flex-shrink: 0;
    width: 380px;
    height: 220px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.review-item:hover {
    border-color: #D4FC1E;
    background: #111;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 252, 30, 0.1);
}

/* Шапка отзыва (Аватар + Имя) */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #D4FC1E;
}

.review-author {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
}

/* Текст отзыва */
.review-comment {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
    font-style: normal;
}

/* Бесконечная анимация */
@keyframes scroll-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Пауза при наведении */
.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

/* Адаптив */
@media (max-width: 768px) {
    .review-item {
        width: 300px;
        height: 200px;
        padding: 20px;
    }
}