/**
 * YouTube Channel Button Styles
 */

.youtube-channel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(to right, #dc2626, #ef4444);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
}

.youtube-channel-button:hover {
    background: linear-gradient(to right, #b91c1c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.youtube-channel-button svg {
    flex-shrink: 0;
}
