/* YouTube Channel Block - Frontend Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.czytuj-youtube-channel-block {
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
}

.czytuj-youtube-channel-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease;
}

.czytuj-youtube-channel-wrapper:hover {
    transform: translateY(-2px);
}

.czytuj-youtube-channel-link {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    text-decoration: none !important;
    border-bottom: none !important;
}

.czytuj-youtube-channel-link:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

.czytuj-youtube-channel-avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.czytuj-youtube-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.czytuj-youtube-channel-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
}

.czytuj-youtube-channel-info {
    flex: 1;
    min-width: 0;
}

.czytuj-youtube-service-name {
    font-size: 11px;
    font-weight: 500;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.czytuj-youtube-channel-name {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.czytuj-youtube-subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    background: #ff0000;
    color: #ffffff !important;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    filter: none !important;
}

.czytuj-youtube-subscribe-btn::before,
.czytuj-youtube-subscribe-btn::after {
    display: none !important;
    content: none !important;
}

.czytuj-youtube-subscribe-btn svg {
    flex-shrink: 0;
    display: block;
}

.czytuj-youtube-subscribe-btn:hover {
    background: #cc0000;
    transform: scale(1.05);
    text-decoration: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    color: #ffffff !important;
}

.czytuj-youtube-subscribe-btn:active {
    transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .czytuj-youtube-channel-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 16px;
    }

    .czytuj-youtube-channel-link {
        flex-direction: column;
        width: 100%;
    }

    .czytuj-youtube-channel-avatar {
        width: 64px;
        height: 64px;
    }

    .czytuj-youtube-channel-name {
        white-space: normal;
        text-align: center;
    }

    .czytuj-youtube-subscribe-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}
