    .bleepsContainer {
    display: flex;
/*     flex-wrap: wrap; */
    gap: 20px;
    justify-content: center;
    flex-direction: column;
    }
    .bleep-block {
        border: 1px solid #00ff00;
        padding: 10px;
        max-width: 750px;
        background-color: rgba(0, 255, 0, 0.1);
    }
    .bleep-title {
        font-size: 1.2em;
        margin: 10px 0;
        text-align: center;
    }
/*
    .bleep-media img,
    .bleep-media video {
        width: 100%;
        object-fit: cover;
        margin-bottom: 10px;
    }
*/
img, video {
        width: 100%;
        object-fit: cover;
        margin-bottom: 10px;
    }
    .bleep-text {
        font-size: 0.9em;
        margin-bottom: 10px;
    }
    .sort-btn, .reset-btn {
        background: black;
        border: 1px solid #00ff00;
        color: #00ff00;
        padding: 8px 15px;
        cursor: pointer;
    }
    .sort-btn:hover, .reset-btn:hover {
        background-color: #00ff00;
        color: black;
    }
    .hashtag {
        color: #80ff80;
        cursor: pointer;
    }
    .hashtag:hover {
        text-decoration: underline;
    }
	

#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #00ff00;
    color: #000000;
    text-align: center;
    line-height: 50px;
    font-size: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Кнопка изначально скрыта */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

#scrollToTop:hover {
    background-color: #00AA00;
}

