.bg-image {
    background: url('../img/123.png');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: grayscale(100%) contrast(130%) brightness(90%);
}

.hybrids {
    padding: 200px 100px 0;
}

.fish-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0 0 30px;
}

.fish-list li {
    margin: 0;
    padding: 0;
    width: 100%;
}

.fish-links__link {
    color: #020639;
    background-color: #FFDE98;
    padding: 16px 20px;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: block;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.fish-links__link:hover {
    background-color: #FDCC68;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 204, 104, 0.3);
}

@media (max-width: 780px) {
    .bg-image {
        max-width: 100vw;
        object-fit: cover;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .hybrids {
        padding: 100px 20px 0;
    }
    .fish-list {
        gap: 12px;
    }
    .fish-links__link {
        padding: 14px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hybrids {
        padding: 80px 15px 0;
    }
    .fish-list {
        gap: 10px;
    }
    .fish-links__link {
        padding: 12px 14px;
        font-size: 13px;
    }
}
