.accounts-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f7fbff;
    box-shadow: 0 2px 16px rgba(47,128,237,0.07), 0 1.5px 8px rgba(47,128,237,0.04);
    padding: 12px 0;
    margin: 0 auto;
}

.accounts-ticker-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    transition: none;
}

.account-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px; /* добавлено скругление */
    margin-right: 24px;
    box-shadow: 0 4px 16px rgba(47,128,237,0.13), 0 1.5px 8px rgba(47,128,237,0.08);
    padding: 10px 18px 10px 10px;
    min-width: 180px;
    max-width: 220px;
    font-size: 0.98rem;
    border-left: 4px solid #56ccf2;
    border-right: 4px solid #2f80ed;
    opacity: 0.95;
    transform: scale(0.98);
    filter: brightness(1.05);
    transition:
        opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    flex-shrink: 0;
}

.account-card:hover {
    opacity: 1;
    transform: scale(1.04);
    filter: brightness(1.12);
}

.account-card::before {
    content: "";
    position: absolute;
    top: -24px;
    right: -24px;
    width: 48px;
    height: 48px;
    background: radial-gradient(circle, #56ccf2 0%, #2f80ed 80%, transparent 100%);
    opacity: 0.10;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.account-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 12px;
    background: #e3f2fd;
    z-index: 1;
}

.account-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1;
}

.account-game {
    font-weight: bold;
    color: #2f80ed;
    font-size: 1rem;
}

.account-price {
    color: #fff;
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(67,233,123,0.10);
    display: inline-block;
    margin: 2px 0;
}

.account-tag {
    color: #fff;
    background: linear-gradient(90deg, #56ccf2 0%, #2f80ed 100%);
    font-size: 0.92rem;
    font-family: 'Consolas', 'Menlo', 'Monaco', monospace;
    letter-spacing: 0.5px;
    margin-top: 2px;
    padding: 2px 8px;
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(47,128,237,0.10);
    display: inline-block;
}