.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0;
    font-family: 'Titillium Web', sans-serif;
}


.pagination a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #111;
    color: white;
    border: 2px solid red;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

/* Hover ефект */
.pagination a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    border-color: darkred;
}

.pagination span {
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin: 0 0.5rem;
}
