.chaturbate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.chaturbate-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.chaturbate-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.chaturbate-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.chaturbate-info {
    padding: 10px 12px;
    font-size: 14px;
}

.chaturbate-username {
    font-weight: 700;
    margin-bottom: 4px;
}

.chaturbate-subject {
    font-size: 13px;
    margin-bottom: 6px;
}

.chaturbate-meta {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.chaturbate-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.72);
    display: none;           /* по умолчанию скрыта */
    z-index: 99999;
    padding: 20px;

    align-items: center;
    justify-content: center;
}

.chaturbate-modal {
    width: 100%;
    max-width: 950px;
    max-height: 92vh;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.chaturbate-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #111;
    color: #fff;
    font-size: 15px;
}

.chaturbate-modal-close {
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.chaturbate-modal-body {
    background: #000;
}

.chaturbate-modal-text-top,
.chaturbate-modal-text-bottom {
    padding: 10px 14px;
    color: #fff;
    background: #111;
    font-size: 14px;
}

.chaturbate-modal-text-bottom {
    border-top: 1px solid #222;
}

.chaturbate-modal-player {
    background: #000;
}

.chaturbate-modal-player iframe {
    width: 100%;
    height: 520px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .chaturbate-modal-player iframe {
        height: 360px;
    }
}

.chaturbate-pagination {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 14px;
}

.chaturbate-page {
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    background: #f9f9f9;
}

.chaturbate-page:hover {
    background: #eee;
}

.chaturbate-page-info {
    color: #666;
}

.chaturbate-modal-signup {
    padding: 8px 14px;
    background: #111;
    text-align: center;
}

.chaturbate-modal-signup a {
    color: #ffcc00;
    font-weight: 600;
    text-decoration: none;
}

.chaturbate-modal-signup a:hover {
    text-decoration: underline;
}