.bp-community-section {
    width: 100%;
    margin: 20px 0 40px 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bp-community-card {
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.75) 0%,
            rgba(250, 248, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.75) 100%);
    border: 2px solid rgba(118, 75, 162, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.bp-community-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 25%,
            rgba(255, 255, 255, 0.4) 45%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.4) 55%,
            transparent 75%);
    animation: shineDiagonal 6s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shineDiagonal {
    0% {
        transform: translateX(-100%) translateY(100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(-100%) translateY(100%) rotate(45deg);
    }
}

.bp-community-title {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(118, 75, 162, 0.95);
    margin: 0 0 12px 0;
    text-shadow: none;
    letter-spacing: -0.5px;
}

.bp-community-description-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 18px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 992px) {

    .no-sidebar.single .site-main,
    .no-sidebar.page .site-main {
        background-color: transparent !important;
    }

    .no-sidebar.single .site-main>article,
    .no-sidebar.page .site-main>article {
        background: rgba(255, 255, 255, 0.6) !important;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(8px);
    }
}

.home .post-card .byline,
.home article .byline,
.home .entry-footer-meta .byline,
.home .post-card .author,
.home article .author {
    display: none !important;
}

.home .post-card .entry-footer-meta .byline,
.home article .entry-footer-meta .byline {
    display: none !important;
}

.bp-community-description {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(118, 75, 162, 0.85);
    margin: 0;
    flex: 1;
    text-align: center;
    max-width: 500px;
}

.bp-community-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(118, 75, 162, 0.15);
    border: 2px solid rgba(118, 75, 162, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(118, 75, 162, 0.2);
    flex-shrink: 0;
}

.bp-community-icon svg {
    width: 32px;
    height: 32px;
    fill: rgba(118, 75, 162, 0.8);
    transition: all 0.3s ease;
}

.bp-community-icon:hover {
    background: rgba(118, 75, 162, 0.25);
    border-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.bp-community-icon:hover svg {
    fill: rgba(118, 75, 162, 1);
    transform: scale(1.1);
}

.bp-community-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 0;
}

.bp-community-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.bp-community-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 25%,
            rgba(255, 255, 255, 0.3) 45%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0.3) 55%,
            transparent 75%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bp-community-btn:hover::before {
    opacity: 1;
    animation: shineButton 0.8s ease-in-out;
}

@keyframes shineButton {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.bp-community-btn {
    position: relative;
}

.bp-btn-whatsapp {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.bp-btn-whatsapp:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: #ffffff;
}

.bp-btn-telegram {
    background: rgba(118, 75, 162, 0.2);
    color: rgba(118, 75, 162, 0.95);
    border: 2px solid rgba(118, 75, 162, 0.5);
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

.bp-btn-telegram:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.7);
    color: rgba(118, 75, 162, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

@media (max-width: 768px) {
    .bp-community-card {
        padding: 20px 20px;
        width: 100%;
    }

    .bp-community-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .bp-community-description-wrapper {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .bp-community-description {
        font-size: 1rem;
        order: 2;
    }

    .bp-community-icon {
        width: 50px;
        height: 50px;
    }

    .bp-community-icon svg {
        width: 28px;
        height: 28px;
    }

    .bp-icon-whatsapp {
        order: 1;
    }

    .bp-icon-telegram {
        order: 3;
    }

    .bp-community-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .bp-community-btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}