.hit-counter {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    transition: transform 0.3s ease;
}

.hit-counter:hover {
    transform: scale(1.05);
}